home *** CD-ROM | disk | FTP | other *** search
- on compileAthleteDB
- set the itemDelimiter to ","
- set vMax to the number of lines in field "database"
- repeat with vLine = 1 to vMax
- put "Processing Line " & vLine && the long time
- set vAth to item 2 of line vLine of field "database"
- put " Athlete #" & vAth
- set vDBName to "DB" & vAth
- set vDBCast to the number of cast vDBName
- set vCat to item 6 of line vLine of field "database"
- put " Clear old info"
- if the number of cast vDBName < 1 then
- put " Missing!"
- end if
- set the text of cast vDBCast to EMPTY
- put " AthleteName"
- set vName to "AN" & vCat & vAth & ".PCT"
- if the number of cast vName >= 1 then
- put vName & "," & string(the number of cast vName) & RETURN after field vDBCast
- end if
- put " Thumbnail"
- set vName to "TN" & vAth
- if the number of cast vName >= 1 then
- put vName & "," & string(the number of cast vName) & RETURN after field vDBCast
- end if
- put " Infobox"
- set vName to "INFO" & vAth
- if the number of cast vName >= 1 then
- put vName & "," & string(the number of cast vName) & RETURN after field vDBCast
- end if
- put " Cover"
- set vName to "PO" & vAth
- if the number of cast vName >= 1 then
- put vName & "," & string(the number of cast vName) & RETURN after field vDBCast
- end if
- put " Bio Pages"
- set vPFix to "BIO" & vAth
- set vNumPages to 10
- repeat with vI = 1 to 10
- set vName to vPFix & vI
- if the number of cast vName < 1 then
- set vNumPages to vI - 1
- exit repeat
- end if
- put vName & "," & string(the number of cast vName) & RETURN after field vDBCast
- end repeat
- put vNumPages into item 1 of line vLine of field "database"
- put " Slides & Captions"
- set vPFix1 to "IM" & vAth & "0"
- set vPFix2 to "CAP" & vAth & "0"
- set vNumSlides to 0
- repeat with vI = 1 to 10
- set vName to vPFix1 & vI
- if the number of cast vName >= 1 then
- put vName & "," & string(the number of cast vName) & RETURN after field vDBCast
- set vNumSlides to vNumSlides + 1
- end if
- set vName to vPFix2 & vI
- if the number of cast vName >= 1 then
- put vName & "," & string(the number of cast vName) & RETURN after field vDBCast
- end if
- end repeat
- put vNumSlides into item 3 of line vLine of field "database"
- put " Sidebars & Titles"
- set vPFix1 to "SIDE" & vAth
- set vPFix2 to "SBTITLE" & vAth
- repeat with vI = 1 to 3
- repeat with vJ = 1 to 5
- set vName to vPFix1 & vI & vJ
- if the number of cast vName >= 1 then
- put vName & "," & string(the number of cast vName) & RETURN after field vDBCast
- end if
- if the number of cast vName >= 1 then
- set vName to vPFix2 & vI & vJ
- put vName & "," & string(the number of cast vName) & RETURN after field vDBCast
- end if
- end repeat
- end repeat
- end repeat
- put "Done"
- end
-